home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / EARCD / text / hyper / hsc_source.lha / hsc / source / hsclib / linit.h < prev    next >
C/C++ Source or Header  |  1996-09-08  |  631b  |  24 lines

  1. /*
  2.  * hsclib/linit.h
  3.  *
  4.  * configuration & initialisation functions
  5.  */
  6. #ifndef HSCLIB_LINIT_H          /* avoid include twice */
  7. #define HSCLIB_LINIT_H
  8.  
  9. #ifndef NOEXTERN_HSCLIB_LINIT_H
  10.  
  11. extern HSCPRC *hsc_read_base_info(VOID);
  12. extern BOOL hsc_copy_base_info(HSCPRC * dest_hp, HSCPRC * dummy_hp);
  13.  
  14. extern BOOL hsc_init_hscprc(HSCPRC * hp, STRPTR prefs_fname);
  15. extern BOOL hsc_init_project(HSCPRC * hp, STRPTR project_fname);
  16.  
  17. extern BOOL hsc_init_tagsNattr(HSCPRC * hp);
  18. extern BOOL hsc_init_basicEntities(HSCPRC * hp);
  19. extern BOOL hsc_assign_tagCBs(HSCPRC * hp);
  20.  
  21. #endif /* NOEXTERN_HSCLIB_LINIT_H */
  22. #endif /* HSCLIB_LINIT_H */
  23.  
  24.